home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / termsorc.lha / Extras / Source / gtlayout-source.lha / gtlayout_data.h < prev    next >
C/C++ Source or Header  |  1995-09-29  |  933b  |  39 lines

  1. /*  GadTools layout toolkit
  2. **
  3. **  Copyright © 1993-1995 by Olaf `Olsen' Barthel
  4. **  Freely distributable.
  5. */
  6.  
  7. #ifndef _GTLAYOUT_DATA_H
  8. #define _GTLAYOUT_DATA_H 1
  9.  
  10. extern ULONG             ghostingPat;
  11. extern ULONG             checkPat;
  12.  
  13. extern struct ExecBase        *SysBase;
  14. extern struct Library        *IntuitionBase;
  15. extern struct GfxBase        *GfxBase;
  16. extern struct Library        *UtilityBase;
  17. extern struct Library        *GadToolsBase;
  18. extern struct Library        *KeymapBase;
  19. extern struct LocaleBase    *LocaleBase;
  20. extern struct Locale        *LTP_Locale;
  21. extern struct SignalSemaphore     LTP_LockSemaphore;
  22. extern struct MinList         LTP_LockList;
  23. extern struct IClass        *LTP_ImageClass,
  24.                 *LTP_LevelClass,
  25.                 *LTP_PopupClass,
  26.                 *LTP_TabClass;
  27. extern struct MinList         LTP_EmptyList;
  28.  
  29. extern BOOLEAN             V39,
  30.                  V40;
  31.  
  32. #ifdef DO_PICKSHORTCUTS
  33. extern UBYTE             LTP_Keys[2][256];
  34. extern struct SignalSemaphore     LTP_KeySemaphore;
  35. extern BOOLEAN             LTP_KeysInitialized;
  36. #endif
  37.  
  38. #endif
  39.